home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / _IEFormImageClick.au3 < prev    next >
Text File  |  2006-07-14  |  1KB  |  26 lines

  1. ; *******************************************************
  2. ; Example 1 - Open a browser with the form example, click on the
  3. ;                <input type=image> form element with matching alt text
  4. ; *******************************************************
  5. ;
  6. #include <IE.au3>
  7. $oIE = _IE_Example ("form")
  8. _IEFormImageClick ($oIE, "AutoIt Homepage", "alt")
  9.  
  10. ; *******************************************************
  11. ; Example 2 - Open a browser with the form example, click on the <input type=image>
  12. ;                form element with matching img source URL (sub-string)
  13. ; *******************************************************
  14. ;
  15. #include <IE.au3>
  16. $oIE = _IE_Example ("form")
  17. _IEFormImageClick ($oIE, "autoit_6_240x100.jpg", "src")
  18.  
  19. ; *******************************************************
  20. ; Example 3 - Open a browser with the form example, click on the
  21. ;                <input type=image> form element with matching name
  22. ; *******************************************************
  23. ;
  24. #include <IE.au3>
  25. $oIE = _IE_Example ("form")
  26. _IEFormImageClick ($oIE, "imageExample", "name")